Terms Used
Previous  Top  Next



Here you can find a brief description of some of the most commonly used terms in these instructions.

Cluster
 
To be able to keep track of the data on a partition, the file system divides each partition into small blocks called clusters. A cluster is the smallest area, which can be allocated from the disk and its size depends on the file system and on the size of the partition.  

Cluster tip
 
The unused area at the end of the last cluster allocated by a file is called the cluster tip (or the slack space). This unused area is present in most files because space can be allocated only as cluster sized blocks and the contents of the file rarely completely fill all allocated clusters.  

File system
 
The operating system uses the file system as a database to control the allocation status of a partition. The file system, such as FAT (File Allocation Table) and all its variants (FAT12, FAT16, FAT32) and NTFS (New Technology File System), keeps track of the data on a partition; filenames, dates, size and the physical location on the disk.  

Partition
 
A hard disk can be divided into several logical drives called partitions. The size of the partition and the file system used determine the cluster size. Usually it is desirable to keep the cluster size small to reduce the amount of wasted (or slack) space on the partition.  

Pass, overwriting
 
The number of overwriting passes determines how many times an area on the disk is to be overwritten.  

Period length, of PRNG
 
The length of a pseudorandom sequence; the amount of numbers that can be generated with a PRNG before the sequence starts from the beginning.  

Pseudorandom number generator, PRNG
 
An algorithm that provides a sequence of numbers that appears to be random. All "random" data created by arithmetical means is called pseudorandom.  
 
"Any one who considers arithmetical means of producing random digits is, of course, in a state of sin" - John Von Neumann (1951)  

Unused disk space
 
The space on a partition not used for storing data. Consists of cluster tip areas of the files on the partition and the available free space.  

[